home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1995.rar / 1995 / MAY / Ge9505 / cust1.pas next >
Pascal/Delphi Source File  |  1995-03-10  |  475b  |  31 lines

  1. unit Cust1;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages,
  7.   Classes, Graphics, Controls, Forms, Dialogs;
  8.  
  9. type
  10.   CustComp1 = class(TComponent)
  11.   private
  12.     { Private declarations }
  13.   protected
  14.     { Protected declarations }
  15.   public
  16.     { Public declarations }
  17.   published
  18.     { Published declarations }
  19.   end;
  20.  
  21. procedure Register;
  22.  
  23. implementation
  24.  
  25. procedure Register;
  26. begin
  27.   RegisterComponents('Custom', [CustComp1]);
  28. end;
  29.  
  30. end.
  31.